func runtime.fastrand

22 uses

	runtime (current package)
		alg.go#L69: 		return c1 * (c0 ^ h ^ uintptr(fastrand())) // any kind of NaN
		alg.go#L81: 		return c1 * (c0 ^ h ^ uintptr(fastrand())) // any kind of NaN
		map.go#L242: 	if fastrand()&mask == 0 {
		map.go#L296: 	h.hash0 = fastrand()
		map.go#L315: 	h.hash0 = fastrand()
		map.go#L800: 				h.hash0 = fastrand()
		map.go#L850: 		r = uintptr(fastrand())
		map.go#L1035: 	h.hash0 = fastrand()
		map.go#L1609: 	r := int(fastrand())
		map.go#L1672: 	r := int(fastrand())
		map_fast32.go#L351: 				h.hash0 = fastrand()
		map_fast64.go#L353: 				h.hash0 = fastrand()
		map_faststr.go#L379: 				h.hash0 = fastrand()
		mprof.go#L494: 	if rate <= 0 || (rate > cycles && int64(fastrand())%rate > cycles) {
		mprof.go#L558: 	if rate > 0 && int64(fastrand())%rate == 0 {
		proc.go#L3269: 		for enum := stealOrder.start(fastrand()); !enum.done(); enum.next() {
		proc.go#L4554: 	newg.trackingSeq = uint8(fastrand())
		sema.go#L312: 	s.ticket = fastrand() | 1
		stubs.go#L124: func fastrand() uint32 {
		stubs.go#L154: 	return uint32(uint64(fastrand()) * uint64(n) >> 32)
		stubs.go#L191: 		return uint(fastrand())
		stubs.go#L206: func os_fastrand() uint32 { return fastrand() }